home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Arc1.h < prev    next >
C/C++ Source or Header  |  1999-01-13  |  2KB  |  42 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Arc1H
  3. #define Arc1H
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm1 : public TForm
  11. {
  12. __published:    // IDE-verwaltete Komponenten
  13.     TButton *UpperButton;
  14.     TButton *LeftButton;
  15.     TButton *LowerButton;
  16.     TButton *RightButton;
  17.     TButton *AllButton;
  18.     TButton *LOButton;
  19.     TButton *ROButton;
  20.     TButton *RUButton;
  21.     TButton *LUButton;
  22.     void __fastcall FormCreate(TObject *Sender);
  23.     void __fastcall UpperButtonClick(TObject *Sender);
  24.     
  25.     void __fastcall LowerButtonClick(TObject *Sender);
  26.     void __fastcall LeftButtonClick(TObject *Sender);
  27.     void __fastcall RightButtonClick(TObject *Sender);
  28.     void __fastcall AllButtonClick(TObject *Sender);
  29.     void __fastcall LOButtonClick(TObject *Sender);
  30.     void __fastcall LUButtonClick(TObject *Sender);
  31.     void __fastcall ROButtonClick(TObject *Sender);
  32.     void __fastcall RUButtonClick(TObject *Sender);
  33. private:    // Benutzer-Deklarationen
  34.     void __fastcall Bogen (int vonX, int vonY, int bisX, int bisY);
  35. public:        // Benutzer-Deklarationen
  36.     __fastcall TForm1(TComponent* Owner);
  37. };
  38. //---------------------------------------------------------------------------
  39. extern TForm1 *Form1;
  40. //---------------------------------------------------------------------------
  41. #endif
  42.